home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / ViewKit_dev.idb / usr / share / src / ViewKit / Components / Rolodex / Rolodex.h.z / Rolodex.h
Encoding:
C/C++ Source or Header  |  1996-09-20  |  587 b   |  32 lines

  1. ////////////////////////////////////////////////////////////
  2. // Rolodex.h: Declaration of the Rolodex component class
  3. ///////////////////////////////////////////////////////////
  4.  
  5. #ifndef ROLODEX_H
  6. #define ROLODEX_H
  7.  
  8. #include <Vk/VkComponent.h>
  9.  
  10. class Address;
  11. class Command;
  12. class Database;
  13.  
  14. // Rolodex is a simple component that just combines 
  15. // other components to form the complete interface.
  16.  
  17. class Rolodex : public VkComponent {
  18.  
  19.   private:
  20.  
  21.     Address  *_addr;
  22.     Command  *_commands;
  23.     Database *_database;
  24.  
  25.   public:
  26.  
  27.     Rolodex(Widget, char *);
  28.     ~Rolodex();
  29. };
  30.  
  31. #endif
  32.